home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / ans / chap4 / exer0401 / Test.java
Encoding:
Text File  |  1997-04-19  |  145 b   |  7 lines

  1. class Test {
  2.    protected void finalize() throws Throwable {
  3.       super.finalize();
  4.       System.out.println("We're in finalize");
  5.    }
  6. }
  7.